home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / HDS 3.02 / HDS / utqueue.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-13  |  560 b   |  13 lines  |  [TEXT/MPS ]

  1. /*
  2.     Datei:    utqueue.h                                                      
  3.     Zweck:    Prototypen der Datei utqueue.c                                 
  4.             MkProto, Generator für Prototypen und andere
  5.             Moduldefinitionen aus einer Implementierungsdatei (.c). */
  6.  
  7. extern void utHQueueInit (HQHandle queue, int n);
  8. extern void utHQueueIn (HQHandle old, HQHandle new, int i);
  9. extern void utHQueueOut (HQHandle old, int i);
  10. extern void utPQueueInit (PQPtr queue, int n);
  11. extern void utPQueueIn (PQPtr old, PQPtr new, int i);
  12. extern void utPQueueOut (PQPtr old, int i);
  13.